W4~W8 <<
Previous Next >> Wink3
利用 SciTE 編輯器類解譯 ANSI C 程式
1.下載tcc-0.9.27-win64-bin.zip檔案
2.將上述檔案解壓縮並放置於Y:\
3.修改start.bat如下圖
4.重啟隨身系統,並於cmd中輸入指令tcc,出現以下畫面表示啟動命令搜尋路徑正確。
5.修改 SciTE 編輯器中的 cpp.properties,使其能呼叫tcc.exe用來解譯副檔名為C的ANSI C程式。
6.使用hello.c程式測試
#include <stdio.h>
int main() {
printf("Hello, world!\n");
return 0;
}
W4~W8 <<
Previous Next >> Wink3